What to know about C++ and Visual Studio 2017:

 

 

1.         system("Pause"); use cin.get(); instead of system("Pause");

2.         return 0;

3.         include files are stored at:
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\include
Such as:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\include\iostream notice
it does not have a .cpp on the end of it.

4.         We need "using namespace std;" if we plan on using cout or cin

5.         If we leave out "using namespace std;" then we must use "std::cout << "Hello World!\n";"

6.         pch.h is a program that opens pre-compiled headers.

7.         Files stored at c:\users\"username"\source\repos

8.         C:\Users\"username"\source\repos\TipTaxTotal\TipTaxTotal\TipTaxTotal.cpp

9.         Access Specifiers can be public or private

10.   General Form of a Class Declaration

11.   BankAccount::BankAccount()  (Scope Resolution Operator)

12.   How to call a class:
BankAccount acct1;
BankAccount acct2(500.0);
BankAccount acct3(300.0);

13.   Steps to Create and Use an Object

14.    

15.